home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UTIL / SCREEN / CURSES01 / minix / c / move < prev    next >
Text File  |  1991-05-05  |  2KB  |  47 lines

  1. /****************************************************************/
  2. /* Wmove() routine of the PCcurses package            */
  3. /*                                */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version    */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,    */
  8. /* and therefore consider myself free to make it public domain.    */
  9. /*        Bjorn Larsson (...mcvax!enea!infovax!bl)    */
  10. /****************************************************************/
  11. /* 1.0:    Release:                    870515    */
  12. /****************************************************************/
  13. /* Modified to run under the MINIX operating system by Don Cope */
  14. /* These changes are also released into the public domain.      */
  15. /*                             900906  */
  16. /****************************************************************/
  17.  
  18. #include <curses.h>
  19. #include "curspriv.h"
  20.  
  21. /****************************************************************/
  22. /* Wmove() moves the cursor in window 'win' to position (x,y).    */
  23. /****************************************************************/
  24.  
  25. int    wmove(win,y,x)
  26.   WINDOW    *win;
  27.   int         y;
  28.   int         x;
  29.   {
  30.   if ((x < 0)||(x > win->_maxx)||(y < win->_regtop)||(y >win->_regbottom))
  31.     return(ERR);
  32.   win->_curx = x;
  33.   win->_cury = y;
  34.   return(OK);
  35.   } /* wmove */
  36.  
  37. /****************************************************************/
  38. /* Move() moves the cursor in stdscr to position (x,y).        */
  39. /****************************************************************/
  40.  
  41. int move(y,x)
  42.   int y;
  43.   int x;
  44.   {
  45.   return(wmove(stdscr,y,x));
  46.   } /* move */
  47.